home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS05.ADF / asm / macros.i < prev    next >
Text File  |  1986-01-15  |  1KB  |  42 lines

  1. * macros.i AmigaLink 1/30/86
  2. **********************************************************************
  3. *                                            *
  4. *   Copyright 1985, Commodore-Amiga Inc.   All rights reserved.       *
  5. *   No part of this program may be reproduced, transmitted,      *
  6. *   transcribed, stored in retrieval system, or translated into       *
  7. *   any language or computer language, in any form or by any          *
  8. *   means, electronic, mechanical, magnetic, optical, chemical,       *
  9. *   manual or otherwise, without the prior written permission of     *
  10. *   Commodore-Amiga Incorporated, 983 University Ave. Building #D,   *
  11. *   Los Gatos, California, 95030                       *
  12. *                                            *
  13. **********************************************************************
  14. *
  15. *    printer device macro definitions
  16. *
  17. **********************************************************************
  18.  
  19. *------ external definition macros -----------------------------------
  20.  
  21. XREF_EXE  MACRO
  22.      XREF      _LVO\1
  23.           ENDM
  24.  
  25. XREF_GFX  MACRO
  26.      XREF      _LVO\1
  27.           ENDM
  28.  
  29. *------ library dispatch macros --------------------------------------
  30.  
  31. CALLEXE        MACRO
  32.           CALLLIB _LVO\1
  33.           ENDM
  34.  
  35. LINKEXE        MACRO
  36.           LINKLIB _LVO\1,_SysBase
  37.           ENDM
  38.  
  39. LINKGFX        MACRO
  40.           LINKLIB _LVO\1,_GfxBase
  41.           ENDM
  42.